home *** CD-ROM | disk | FTP | other *** search
/ The Other Thing / The Other Thing.iso / SURF / SURF.EXE / X / 226 < prev    next >
Text File  |  1996-08-14  |  11KB  |  471 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  64;
  136.  -1133.454224;133.125305;16.700207;,
  137.  -1318.804199;133.125305;16.700207;,
  138.  -1604.559082;133.125305;16.700207;,
  139.  -1789.909180;133.125305;16.700207;,
  140.  -480.538208;22.639585;119.682846;,
  141.  -1154.346191;22.639585;119.682846;,
  142.  -1769.017090;22.639585;119.682846;,
  143.  -2442.824951;22.639585;119.682846;,
  144.  -203.237671;-112.171288;65.405525;,
  145.  -1061.608398;-112.171288;65.405525;,
  146.  -1861.755249;-112.171288;65.405525;,
  147.  -2720.125977;-112.171288;65.405525;,
  148.  46.743652;-116.022766;-123.350380;,
  149.  -957.508423;-116.022766;-123.350380;,
  150.  -1965.854980;-116.022766;-123.350380;,
  151.  -2970.106934;-116.022766;-123.350380;,
  152.  -1764.471680;159.216492;1.323052;,
  153.  -1593.486084;159.216492;1.323052;,
  154.  -1329.877197;159.216492;1.323052;,
  155.  -1158.891846;159.216492;1.323052;,
  156.  -2361.881104;32.835709;132.646835;,
  157.  -1743.661865;32.835709;132.646835;,
  158.  -1179.701660;32.835709;132.646835;,
  159.  -561.482544;32.835709;132.646835;,
  160.  -2720.125977;-124.353004;85.170158;,
  161.  -1861.755249;-124.353004;85.170158;,
  162.  -1061.608521;-124.353004;85.170158;,
  163.  -203.237671;-124.353004;85.170158;,
  164.  -2913.541504;-130.772324;-127.510185;,
  165.  -1946.948486;-130.772324;-127.510185;,
  166.  -976.415100;-130.772324;-127.510185;,
  167.  -9.822388;-130.772324;-127.510185;,
  168.  -2970.107422;-116.022766;-123.350380;,
  169.  -2720.125977;-112.171288;65.405495;,
  170.  -2442.825439;22.639565;119.682838;,
  171.  -1789.909424;133.125305;16.700287;,
  172.  -2913.541504;-130.772324;-127.510185;,
  173.  -2720.125977;-124.353035;85.170052;,
  174.  -2361.881104;32.835709;132.646835;,
  175.  -1764.471680;159.216492;1.323147;,
  176.  -1133.454224;133.125305;16.700207;,
  177.  -480.538208;22.639585;119.682846;,
  178.  -203.237671;-112.171288;65.405525;,
  179.  46.743652;-116.022766;-123.350380;,
  180.  -1158.891846;159.216492;1.323052;,
  181.  -561.482544;32.835709;132.646835;,
  182.  -203.237671;-124.353004;85.170158;,
  183.  -9.822388;-130.772324;-127.510185;,
  184.  -1789.909424;133.125305;16.700207;,
  185.  -1604.559082;133.125305;16.700207;,
  186.  -1318.804199;133.125305;16.700207;,
  187.  -1133.454224;133.125305;16.700207;,
  188.  -1764.471680;159.216492;1.323052;,
  189.  -1593.486084;159.216492;1.323052;,
  190.  -1329.877197;159.216492;1.323052;,
  191.  -1158.891846;159.216492;1.323052;,
  192.  46.743652;-116.022766;-123.350380;,
  193.  -957.508423;-116.022766;-123.350380;,
  194.  -1965.854980;-116.022766;-123.350380;,
  195.  -2970.106934;-116.022766;-123.350380;,
  196.  -9.822388;-130.772324;-127.510185;,
  197.  -976.414917;-130.772324;-127.510185;,
  198.  -1946.948486;-130.772324;-127.510185;,
  199.  -2913.541016;-130.772324;-127.510185;;
  200.  
  201.  60;
  202.  3;0,5,1;,
  203.  3;0,4,5;,
  204.  3;1,6,2;,
  205.  3;1,5,6;,
  206.  3;2,7,3;,
  207.  3;2,6,7;,
  208.  3;4,9,5;,
  209.  3;4,8,9;,
  210.  3;5,10,6;,
  211.  3;5,9,10;,
  212.  3;6,11,7;,
  213.  3;6,10,11;,
  214.  3;8,13,9;,
  215.  3;8,12,13;,
  216.  3;9,14,10;,
  217.  3;9,13,14;,
  218.  3;10,15,11;,
  219.  3;10,14,15;,
  220.  3;16,21,17;,
  221.  3;16,20,21;,
  222.  3;17,22,18;,
  223.  3;17,21,22;,
  224.  3;18,23,19;,
  225.  3;18,22,23;,
  226.  3;20,25,21;,
  227.  3;20,24,25;,
  228.  3;21,26,22;,
  229.  3;21,25,26;,
  230.  3;22,27,23;,
  231.  3;22,26,27;,
  232.  3;24,29,25;,
  233.  3;24,28,29;,
  234.  3;25,30,26;,
  235.  3;25,29,30;,
  236.  3;26,31,27;,
  237.  3;26,30,31;,
  238.  3;32,37,33;,
  239.  3;32,36,37;,
  240.  3;33,38,34;,
  241.  3;33,37,38;,
  242.  3;34,39,35;,
  243.  3;34,38,39;,
  244.  3;40,45,41;,
  245.  3;40,44,45;,
  246.  3;41,46,42;,
  247.  3;41,45,46;,
  248.  3;42,47,43;,
  249.  3;42,46,47;,
  250.  3;48,53,49;,
  251.  3;48,52,53;,
  252.  3;49,54,50;,
  253.  3;49,53,54;,
  254.  3;50,55,51;,
  255.  3;50,54,55;,
  256.  3;56,61,57;,
  257.  3;56,60,61;,
  258.  3;57,62,58;,
  259.  3;57,61,62;,
  260.  3;58,63,59;,
  261.  3;58,62,63;;
  262.  
  263.  MeshMaterialList {
  264.   1;
  265.   1;
  266.   0;;
  267.   Material {
  268.    1.000000;1.000000;1.000000;1.000000;;
  269.    15.000000;
  270.    1.000000;1.000000;1.000000;;
  271.    0.000000;0.000000;0.000000;;
  272.   }
  273.  }
  274.  MeshNormals {
  275.   64;
  276.   0.000000;-0.681832;-0.731509;,
  277.   0.000000;-0.681832;-0.731509;,
  278.   0.000000;-0.681832;-0.731509;,
  279.   0.000000;-0.681832;-0.731509;,
  280.   -0.000000;-0.182719;-0.983165;,
  281.   0.000000;-0.182719;-0.983165;,
  282.   0.000000;-0.182719;-0.983165;,
  283.   0.000000;-0.182719;-0.983165;,
  284.   -0.000000;0.822946;-0.568119;,
  285.   0.000000;0.822946;-0.568119;,
  286.   0.000000;0.822946;-0.568119;,
  287.   0.000000;0.822946;-0.568119;,
  288.   0.000000;0.999792;-0.020400;,
  289.   0.000000;0.999792;-0.020400;,
  290.   0.000000;0.999792;-0.020400;,
  291.   0.000000;0.999792;-0.020400;,
  292.   0.000000;0.720537;0.693416;,
  293.   0.000000;0.720537;0.693416;,
  294.   0.000000;0.720537;0.693416;,
  295.   0.000000;0.720537;0.693416;,
  296.   -0.000000;0.252852;0.967505;,
  297.   0.000000;0.252852;0.967505;,
  298.   0.000000;0.252852;0.967505;,
  299.   0.000000;0.252852;0.967505;,
  300.   0.000000;-0.793764;0.608226;,
  301.   0.000000;-0.793764;0.608226;,
  302.   0.000000;-0.793764;0.608225;,
  303.   0.000000;-0.793764;0.608226;,
  304.   0.000000;-0.999545;0.030169;,
  305.   0.000000;-0.999545;0.030169;,
  306.   0.000000;-0.999545;0.030169;,
  307.   0.000000;-0.999545;0.030169;,
  308.   -0.635138;-0.163508;0.754894;,
  309.   -0.355765;0.562342;0.746460;,
  310.   -0.577000;0.643248;0.503292;,
  311.   -0.061463;-0.461628;-0.884942;,
  312.   -0.228822;-0.944279;0.236596;,
  313.   -0.599150;0.367937;0.711085;,
  314.   -0.287747;0.669698;0.684621;,
  315.   -0.252034;0.581398;-0.773598;,
  316.   0.258010;0.567574;-0.781851;,
  317.   0.304630;0.719552;0.624056;,
  318.   0.664268;0.310579;0.679918;,
  319.   0.218696;-0.925735;0.308523;,
  320.   0.107746;-0.424724;-0.898888;,
  321.   0.527385;0.805158;0.271268;,
  322.   0.421484;0.578493;0.698353;,
  323.   0.685260;-0.183706;0.704748;,
  324.   0.000000;-0.507741;-0.861510;,
  325.   0.000000;-0.507741;-0.861510;,
  326.   0.000000;-0.507741;-0.861510;,
  327.   0.000000;-0.507741;-0.861510;,
  328.   0.000000;-0.507741;-0.861510;,
  329.   0.000000;-0.507741;-0.861510;,
  330.   0.000000;-0.507741;-0.861510;,
  331.   0.000000;-0.507741;-0.861510;,
  332.   0.000000;0.271440;-0.962455;,
  333.   0.000000;0.271440;-0.962455;,
  334.   0.000000;0.271440;-0.962455;,
  335.   0.000000;0.271440;-0.962455;,
  336.   0.000000;0.271440;-0.962455;,
  337.   0.000000;0.271440;-0.962455;,
  338.   0.000000;0.271440;-0.962455;,
  339.   0.000000;0.271440;-0.962455;;
  340.  
  341.   60;
  342.   3;0,5,1;,
  343.   3;0,4,5;,
  344.   3;1,6,2;,
  345.   3;1,5,6;,
  346.   3;2,7,3;,
  347.   3;2,6,7;,
  348.   3;4,9,5;,
  349.   3;4,8,9;,
  350.   3;5,10,6;,
  351.   3;5,9,10;,
  352.   3;6,11,7;,
  353.   3;6,10,11;,
  354.   3;8,13,9;,
  355.   3;8,12,13;,
  356.   3;9,14,10;,
  357.   3;9,13,14;,
  358.   3;10,15,11;,
  359.   3;10,14,15;,
  360.   3;16,21,17;,
  361.   3;16,20,21;,
  362.   3;17,22,18;,
  363.   3;17,21,22;,
  364.   3;18,23,19;,
  365.   3;18,22,23;,
  366.   3;20,25,21;,
  367.   3;20,24,25;,
  368.   3;21,26,22;,
  369.   3;21,25,26;,
  370.   3;22,27,23;,
  371.   3;22,26,27;,
  372.   3;24,29,25;,
  373.   3;24,28,29;,
  374.   3;25,30,26;,
  375.   3;25,29,30;,
  376.   3;26,31,27;,
  377.   3;26,30,31;,
  378.   3;32,37,33;,
  379.   3;32,36,37;,
  380.   3;33,38,34;,
  381.   3;33,37,38;,
  382.   3;34,39,35;,
  383.   3;34,38,39;,
  384.   3;40,45,41;,
  385.   3;40,44,45;,
  386.   3;41,46,42;,
  387.   3;41,45,46;,
  388.   3;42,47,43;,
  389.   3;42,46,47;,
  390.   3;48,53,49;,
  391.   3;48,52,53;,
  392.   3;49,54,50;,
  393.   3;49,53,54;,
  394.   3;50,55,51;,
  395.   3;50,54,55;,
  396.   3;56,61,57;,
  397.   3;56,60,61;,
  398.   3;57,62,58;,
  399.   3;57,61,62;,
  400.   3;58,63,59;,
  401.   3;58,62,63;;
  402.  }
  403.  MeshTextureCoords {
  404.   64;
  405.   -5.167272;-0.126679;,
  406.   -6.094021;-0.126679;,
  407.   -7.522795;-0.126679;,
  408.   -8.449546;-0.126679;,
  409.   -1.902692;0.472146;,
  410.   -5.271731;0.472146;,
  411.   -8.345085;0.472146;,
  412.   -11.714124;0.472146;,
  413.   -0.516190;1.099095;,
  414.   -4.808043;1.099095;,
  415.   -8.808776;1.099095;,
  416.   -13.100629;1.099095;,
  417.   0.733716;0.951379;,
  418.   -4.287543;0.951379;,
  419.   -9.329274;0.951379;,
  420.   -14.350533;0.951379;,
  421.   -8.449547;-0.278057;,
  422.   -7.522795;-0.278057;,
  423.   -6.094021;-0.278057;,
  424.   -5.167272;-0.278057;,
  425.   -11.714126;0.472070;,
  426.   -8.345085;0.472070;,
  427.   -5.271733;0.472070;,
  428.   -1.902692;0.472070;,
  429.   -13.100629;1.194909;,
  430.   -8.808776;1.194909;,
  431.   -4.808043;1.194909;,
  432.   -0.516190;1.194909;,
  433.   -14.350534;1.019499;,
  434.   -9.329274;1.019499;,
  435.   -4.287544;1.019499;,
  436.   0.733716;1.019499;,
  437.   -14.350534;0.951379;,
  438.   -13.100629;1.099095;,
  439.   -11.714126;0.472146;,
  440.   -8.449547;-0.126679;,
  441.   -14.350534;1.019499;,
  442.   -13.100629;1.194909;,
  443.   -11.714126;0.472070;,
  444.   -8.449547;-0.278057;,
  445.   -5.167272;-0.126679;,
  446.   -1.902692;0.472146;,
  447.   -0.516190;1.099095;,
  448.   0.733716;0.951379;,
  449.   -5.167272;-0.278057;,
  450.   -1.902692;0.472070;,
  451.   -0.516190;1.194909;,
  452.   0.733716;1.019499;,
  453.   -8.449547;-0.126679;,
  454.   -7.522795;-0.126679;,
  455.   -6.094021;-0.126679;,
  456.   -5.167272;-0.126679;,
  457.   -8.449547;-0.278057;,
  458.   -7.522795;-0.278057;,
  459.   -6.094021;-0.278057;,
  460.   -5.167272;-0.278057;,
  461.   0.733716;0.951379;,
  462.   -4.287543;0.951379;,
  463.   -9.329274;0.951379;,
  464.   -14.350533;0.951379;,
  465.   0.733716;1.019499;,
  466.   -4.287543;1.019499;,
  467.   -9.329274;1.019499;,
  468.   -14.350533;1.019499;;
  469.  }
  470. }
  471.